home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / hardware / rap / Makefile < prev    next >
Encoding:
Makefile  |  1994-08-02  |  454 b   |  21 lines

  1. #!smake
  2.  
  3. include $(ROOT)/usr/include/make/commondefs
  4.  
  5. RAPDEFS    = -D_K32U32 -D_KERNEL -DSTATIC=static -DJUMP_WAR -DPROBE_WAR \
  6.     -DBADVA_WAR -DIP22 -DR4000
  7. RAPOPTS    = -Wx,-G8 -non_shared -coff -Wc,-pic0 -O0 -g2
  8. CFILES    = rap.c play.c record.c rapMap.c
  9. TARGEXS    = play record rapMap
  10. TARGETS    = $(TARGEXS) rap.o
  11.  
  12. default all: $(TARGETS)
  13.  
  14. include $(COMMONRULES)
  15.  
  16. rap.o: rap.c
  17.     ${CCF} -c rap.c $(RAPDEFS) $(RAPOPTS)
  18.  
  19. $(TARGEXS): $$@.c
  20.     ${CCF} -o $@ $@.c $(LDFLAGS)
  21.